home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef SpeedTestH
- #define SpeedTestH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <ComCtrls.hpp>
- #include <Mask.hpp>
- //---------------------------------------------------------------------------
- class TFSpeedTest : public TForm
- {
- __published: // Komponenten, die von der IDE verwaltet werden
- TGroupBox *GBSpeedTest;
- TPanel *PFTop;
- TPanel *PILeft;
- TLabel *LFunction;
- TMemo *MFunction;
- TPanel *PFBottom;
- TPanel *PFRight;
- TButton *BStart;
- TEdit *EResult;
- TLabel *LHowOften;
- TLabel *LTimes;
- TButton *BExit;
- TUpDown *UDTimes;
- TEdit *ETimes;
- TLabel *LcTime;
- TLabel *LtheTime;
- TLabel *Lsec;
- TLabel *LInfo;
- TLabel *LcTime0;
- TLabel *LtheTime0;
- TLabel *Lsec0;
- void __fastcall BExitClick(TObject *Sender);
-
- void __fastcall FormShow(TObject *Sender);
-
-
- void __fastcall BStartClick(TObject *Sender);
- void __fastcall ETimesChange(TObject *Sender);
-
-
-
- private: // Benutzerdeklarationen
- public: // Benutzerdeklarationen
- __fastcall TFSpeedTest(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFSpeedTest *FSpeedTest;
- //---------------------------------------------------------------------------
- #endif
-